home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
DATABASE
/
TRL4CL.ZIP;1
/
TRSOURCE.EXE
/
_TR_STRL.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-10-22
|
356 b
|
24 lines
/*********
*
* _TR_STRL.C
*
* by Tom Rettig
*
* Placed in the public domain by Tom Rettig Associates, 10/22/1990.
*
* Syntax: _tr_strlen(cp)
* Return: int length of *cp
* Note : does not count null terminator
********/
#include "trlib.h"
_tr_strlen(instr)
char *instr;
{
int i;
for (i=0; instr[i]; i++)
;
return(i);
}